home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Nero 1.xpl < prev    next >
Text File  |  2004-02-09  |  1KB  |  51 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Program Options\Other Programs\Nero Burning ROM"
  5. "NAME"="Show actual burning speed"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Show actual burning speed during recording"
  9. "DESCRIPTION 1"="Normally Nero does only display the actual burning speed as it was configured inside the Create CD dialog box (e.g. 52X) during the creation of a CD."
  10. "DESCRIPTION 2"="With this setting activated, Nero will display the real (live) recording speed that the CD-R drive currently uses."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com/"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="Thanks to Gott for this setting!"
  15. "COMMENT 2"="see also: http://www.cdrlabs.com/phpBB/viewtopic.php?t=11710
  16.  
  17.  
  18.  
  19. sP="HKCU\Software\ahead\Nero - Burning Rom\"
  20. sV1="HKCU\Software\ahead\Nero - Burning Rom\Recorder\ShowSingleRecorderSpeed"
  21. sV2="HKLM\Software\ahead\Nero - Burning Rom\Recorder\ShowSingleRecorderSpeed"
  22. 'DW = 1 
  23.  
  24. Sub Plugin_Initialize 
  25.  if RegPathExists(sp) then
  26.    i=RegReadValue(sV1)
  27.    if i=1 then SetUIElement 1,true
  28.  else
  29.    Call Disable()
  30.  end if
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  b=GetUIElement(1)
  38.  if b=true then
  39.     Call RegWriteValue(sV1,"1",2)
  40.  else
  41.     Call RegWriteValue(sV1,"0",2)
  42.  end if
  43.  
  44. End Sub
  45.  
  46. Sub Plugin_Terminate 
  47. End Sub
  48.  
  49.  
  50.  
  51.